home *** CD-ROM | disk | FTP | other *** search
/ DC Comics: Collected Edit…& Graphic Novels Library / DC Comics: Collected Editions & Graphic Novels Library.iso / pc / scripts / link_scripts.js < prev   
Encoding:
JavaScript  |  2003-07-23  |  3.3 KB  |  110 lines

  1. /*
  2.  * Function popUpPage() opens an html file in a 
  3.  * new browser window and centers the window on the user's computer screen.
  4.  * This function is passed to it:
  5.  * path - the URL of the HTML page to open.
  6.  * name - the name to give the browser window.
  7.  * scroll - the option of scroll bars on the browser window, yes or no.
  8. */
  9.  
  10. function popUpPage(path, name, scroll) {
  11.     var w = (500);  // if width not given, define width of the popup page.
  12.     var h = (720);  // if height not given, definte height of the popup page.
  13.     var win2X = (screen.width/2 - w/2); // Center popup page offset by it's width.
  14.     var win2Y = 15; // Top of the popup page on the screen.
  15.     winprops2 = 'height='+h+',width='+w+',top='+win2Y+',left='+win2X+',scrollbars='+scroll+',resizable'// properties of the browser window.
  16.     win2 = window.open(path, name, winprops2) // Opens the new browser window.
  17.     if (parseInt(navigator.appVersion) >= 4) { win2.window.focus(); } // Give the new browser widow focus.
  18. }
  19.  
  20.  
  21. //------------------------------
  22.  
  23. /*
  24.  * Function MM_jumpMenu() opens a new web page in a specified window.
  25.  * It is used by selecting an option on the drop down navigation forms.
  26.  * This function is passed to it:
  27.  * targ - window location (i.e.: this, _blank, _parent, etc)
  28.  * selObj - name of the selection object that holds the options
  29.  * restore - if true, dropdown menu will reset to original state after selection is made
  30.  */
  31.  
  32. function MM_jumpMenu(targ,selObj,restore){ //v3.0
  33.   eval(targ+".location='" + selObj.options[selObj.selectedIndex].value + "'");
  34.   if (restore) { selObj.selectedIndex=0; }
  35. }
  36.  
  37.  
  38. //------------------------------
  39.  
  40.  
  41. /*
  42.  * Function update_frame() opens a new web page in the current browser widow.
  43.  * It is used by selecting an option on the drop down navigation forms.
  44.  * This function is passed to it:
  45.  * myoptions - object containing the URL of the HTML page to open.
  46.  */
  47.  
  48. function update_frame(myoptions) {
  49.     destination=myoptions[myoptions.selectedIndex].value;
  50.     if(destination=="null"){
  51.         return true; 
  52.     }
  53.     window.open(destination, '_self'); // Opens the new browser window.
  54.     myoptions.selectedIndex=0; 
  55.     return true;
  56. }
  57.  
  58. //------------------------------
  59.  
  60.  
  61. /*
  62.  * Function myVoid() does nothing.  It is used when the anchor tag has an event
  63.  * such as OnMouseOver that uses a function.  We want the function to be called
  64.  * rather than the URL in the anchor tag called.
  65.  */
  66.  
  67. function myVoid(){}
  68.  
  69.  
  70. //------------------------------
  71.  
  72. function FeatureWindow(mypage, myname, w, h, scroll) {
  73. var winl = 0;
  74. var wint = 0;
  75. winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+''
  76. win = window.open(mypage, myname, winprops)
  77. if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
  78. }
  79.  
  80.  
  81. //------------------------------
  82.  
  83.  
  84. // This funciton verifies the zip code when the comic form is submitted.         
  85. function ValidateZip()
  86. {
  87.  
  88.   if (document.search.Zip.value == "")
  89.   {
  90.     alert("Please enter a value for the \"Zip\" field.");
  91.     document.search.Zip.focus();
  92.     return (false);
  93.   }
  94.  
  95.   if (document.search.Zip.value.length < 5)
  96.   {
  97.     alert("Please enter at least 5 characters in the \"Zip\" field.");
  98.     document.search.Zip.focus();
  99.     return (false);
  100.   }
  101.  
  102.   if (document.search.Zip.value.length > 7)
  103.   {
  104.     alert("Please enter at most 7 characters in the \"Zip\" field.");
  105.     document.search.Zip.focus();
  106.     return (false);
  107.   }
  108.   return (true);
  109. }
  110.